-
Notifications
You must be signed in to change notification settings - Fork 3.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
urllib3 requirements fix #830
Conversation
Thanks for your pull request. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). 📝 Please follow instructions at https://git.k8s.io/community/CLA.md#the-contributor-license-agreement to sign the CLA. It may take a couple minutes for the CLA signature to be fully registered; after that, please reply here with a new comment and we'll verify. Thanks.
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. I understand the commands that are listed here. |
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: aogier If they are not already assigned, you can assign the PR to them by writing The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
20c5412
to
5efe067
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually this should fix it for now. Also urllib3 version <1.24.3 is affected by CVE-2019-11324.
@@ -2,7 +2,7 @@ certifi>=14.05.14 # MPL | |||
six>=1.9.0 # MIT | |||
python-dateutil>=2.5.3 # BSD | |||
setuptools>=21.0.0 # PSF/ZPL | |||
urllib3>=1.23 # MIT | |||
urllib3>=1.23,<1.25 # MIT |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
urllib3>=1.23,<1.25 # MIT | |
urllib3==1.24.3 # MIT |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm. I'll go that way in ~14 hours (office time). Thanks!
Also, your CLA seems to be problematic since your commit shows "a authored and b committed" the change. If you don't fix the CLA or apply the changes quick I may open a PR myself since the exploit is rated "High". |
yes, that's because I repushed my commit under an already signed account for CLA, if this is not acceptable I'll then wait for eidosmedia to approve contributions and then I'll resign under proper mail |
|
https://help.github.com/en/articles/why-are-my-commits-linked-to-the-wrong-user |
@aogier: PR needs rebase. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/check-cla |
Closing in favor of #897 /close |
@roycaihw: Closed this PR. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
fixes #829
thank you, regards